home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _GUICtrlEditGetLineCount.au3 < prev    next >
Text File  |  2006-06-17  |  895b  |  29 lines

  1. #include <GUIConstants.au3>
  2. #include <GuiEdit.au3>
  3.  
  4. opt('MustDeclareVars', 1)
  5.  
  6. Dim $myedit, $Status, $msg
  7.  
  8. GUICreate("Edit Get Line Count", 392, 254)
  9.  
  10. $myedit = GUICtrlCreateEdit("First line" & @CRLF, 140, 32, 121, 97, BitOR($ES_AUTOVSCROLL, $WS_VSCROLL, $ES_MULTILINE))
  11. GUICtrlSetLimit($myedit, 1500)
  12. $Status = GUICtrlCreateLabel("", 0, 234, 392, 20, BitOR($SS_SUNKEN, $SS_CENTER))
  13.  
  14. ; will be append dont' forget 3rd parameter
  15. GUICtrlSetData($myedit, "2nd line" & @CRLF & "3rd line" & @CRLF & "4th line" & @CRLF & _
  16.       "5th line" & @CRLF & "6th line" & @CRLF & "7th line" & @CRLF & "8th line" & @CRLF & "9th line", 1)
  17.  
  18. GUISetState()
  19. GUICtrlSetData($Status, "Line Count: " & _GUICtrlEditGetLineCount ($myedit))
  20.  
  21. ; Run the GUI until the dialog is closed
  22. While 1
  23.    $msg = GUIGetMsg()
  24.    Select
  25.       Case $msg = $GUI_EVENT_CLOSE
  26.          ExitLoop
  27.    EndSelect
  28. WEnd
  29.